home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_bas / tbar.zip / FORM3.FRM < prev    next >
Text File  |  1994-06-04  |  994b  |  45 lines

  1. VERSION 2.00
  2. Begin Form Form3 
  3.    Caption         =   "Form3"
  4.    ClientHeight    =   1200
  5.    ClientLeft      =   1116
  6.    ClientTop       =   2052
  7.    ClientWidth     =   5844
  8.    Height          =   1620
  9.    Left            =   1068
  10.    LinkTopic       =   "Form3"
  11.    ScaleHeight     =   1200
  12.    ScaleWidth      =   5844
  13.    Top             =   1680
  14.    Width           =   5940
  15.    Begin CommandButton Command2 
  16.       Caption         =   "&Cancel"
  17.       Height          =   396
  18.       Left            =   2352
  19.       TabIndex        =   1
  20.       Top             =   480
  21.       Width           =   1740
  22.    End
  23.    Begin CommandButton Command1 
  24.       Caption         =   "&OK"
  25.       Height          =   396
  26.       Left            =   432
  27.       TabIndex        =   0
  28.       Top             =   480
  29.       Width           =   1452
  30.    End
  31. End
  32. Sub Command1_Click ()
  33.  
  34.   Unload Me
  35.  
  36. End Sub
  37.  
  38. Sub Command2_Click ()
  39.  
  40.   Unload Me
  41.   MDIForm1!TBar1.ButtonState(6) = 3
  42.  
  43. End Sub
  44.  
  45.